initial
This commit is contained in:
37
tsconfig.json
Normal file
37
tsconfig.json
Normal file
@@ -0,0 +1,37 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"target": "ESNext",
|
||||
"module": "ESNext",
|
||||
"lib": ["ESNext", "DOM", "ScriptHost"],
|
||||
"strict": true,
|
||||
"esModuleInterop": true,
|
||||
"allowJs": true,
|
||||
"moduleResolution": "node",
|
||||
"sourceMap": false,
|
||||
"declaration": true,
|
||||
"declarationMap": true,
|
||||
"declarationDir": "./lib",
|
||||
"outDir": "./lib",
|
||||
"rootDir": "src",
|
||||
"noImplicitAny": true,
|
||||
"noUnusedLocals": true,
|
||||
"noUnusedParameters": true,
|
||||
"noImplicitReturns": true,
|
||||
"strictNullChecks": false,
|
||||
"resolveJsonModule": true,
|
||||
"skipLibCheck": true,
|
||||
"noImplicitOverride": true,
|
||||
"emitDecoratorMetadata": true,
|
||||
"experimentalDecorators": true,
|
||||
"ignoreDeprecations": "5.0",
|
||||
"allowUnusedLabels": true,
|
||||
"baseUrl": "./",
|
||||
"typeRoots": ["./node_modules/@types", "./types"],
|
||||
"paths": {
|
||||
"src/*": ["src/*"]
|
||||
}
|
||||
},
|
||||
"include": [
|
||||
"./src", "types", "./typings", "./test", "./docs-source"]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user