initial commit
This commit is contained in:
34
tsconfig.json
Normal file
34
tsconfig.json
Normal file
@@ -0,0 +1,34 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"outDir": "./dist",
|
||||
"module": "esnext",
|
||||
"target": "es6",
|
||||
"lib": ["esnext", "dom"],
|
||||
"sourceMap": true,
|
||||
"allowJs": true,
|
||||
"jsx": "react",
|
||||
"moduleResolution": "node",
|
||||
"noImplicitReturns": true,
|
||||
"noImplicitThis": true,
|
||||
"noImplicitAny": true,
|
||||
"strictNullChecks": true,
|
||||
"resolveJsonModule": true,
|
||||
"baseUrl": "./",
|
||||
"rootDir": "./src",
|
||||
"typeRoots": [
|
||||
"./src/@types",
|
||||
"node_modules/@types"
|
||||
],
|
||||
"paths": {
|
||||
"@/*": ["src/*"]
|
||||
},
|
||||
"allowSyntheticDefaultImports": true,
|
||||
"esModuleInterop": true,
|
||||
"importsNotUsedAsValues": "remove",
|
||||
"incremental": false,
|
||||
"skipLibCheck": false,
|
||||
"strict": true
|
||||
},
|
||||
"include": ["./src/**/*"],
|
||||
"exclude": ["**/node_modules"]
|
||||
}
|
||||
Reference in New Issue
Block a user