Files
threetwo/tsconfig.json
2021-04-15 15:08:54 -07:00

28 lines
592 B
JSON

{
"extends": "@tsconfig/node14/tsconfig.json",
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"target": "es2019",
"jsx": "react",
"module": "commonjs",
"sourceMap": true,
"outDir": "./dist/",
"skipLibCheck": true,
"lib": [
"DOM"
]
},
"settings": {
"eslint.workingDirectories": [
{"directory": "./node_modules", "changeProcessCWD": true }
]
},
"exclude": [
"./src/server "
],
"include": [
"./src/client/*",
"./src/client/types/**/*.d.ts"
]
}