30 lines
751 B
JSON
30 lines
751 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,
|
|
"resolveJsonModule": true,
|
|
"lib": ["dom", "dom.iterable", "esnext", "webworker"],
|
|
"baseUrl": ".",
|
|
"esModuleInterop": true,
|
|
"strict": true
|
|
},
|
|
"settings": {
|
|
"eslint.workingDirectories": [
|
|
{
|
|
"directory": "./node_modules",
|
|
"changeProcessCWD": true
|
|
}
|
|
]
|
|
},
|
|
"exclude": ["./src/server "],
|
|
"include": ["./src/client/*", "./src/client/types/**/*.d.ts"]
|
|
}
|