40 lines
788 B
JSON
40 lines
788 B
JSON
{
|
|
"extends": "@tsconfig/node14/tsconfig.json",
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"compilerOptions": {
|
|
"allowSyntheticDefaultImports": true,
|
|
"noImplicitAny": false,
|
|
"target": "es2019",
|
|
"jsx": "react",
|
|
"module": "commonjs",
|
|
"sourceMap": true,
|
|
"outDir": "./dist/",
|
|
"skipLibCheck": true,
|
|
"lib": [
|
|
"dom",
|
|
"dom.iterable",
|
|
"esnext",
|
|
"webworker"
|
|
],
|
|
"plugins": [
|
|
{
|
|
"name": "typescript-plugin-css-modules"
|
|
}
|
|
]
|
|
},
|
|
"settings": {
|
|
"eslint.workingDirectories": [
|
|
{
|
|
"directory": "./node_modules",
|
|
"changeProcessCWD": true
|
|
}
|
|
]
|
|
},
|
|
"exclude": [
|
|
"./src/server "
|
|
],
|
|
"include": [
|
|
"./src/client/*",
|
|
"./src/client/types/**/*.d.ts"
|
|
]
|
|
} |