Files
threetwo/tsconfig.json
2021-06-17 00:05:30 -07:00

23 lines
629 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"]
},
"settings": {
"eslint.workingDirectories": [
{ "directory": "./node_modules", "changeProcessCWD": true }
]
},
"exclude": ["./src/server "],
"include": ["./src/client/*", "./src/client/types/**/*.d.ts"]
}