1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- {
- "compilerOptions": {
- "baseUrl": "src",
- "resolveJsonModule": true,
- "downlevelIteration": false,
- "target": "es5",
- "module": "commonjs",
- "lib": [
- "es5",
- "es2015.promise",
- "es2016",
- "dom"
- ],
- "outDir": "./dist",
- "paths": {
- "@/*": [
- "*"
- ],
- "*": [
- "*"
- ]
- },
- "typeRoots": [
- "./node_modules/@types"
- ],
- "allowSyntheticDefaultImports": true,
- "esModuleInterop": true,
- "declaration": true,
- "stripInternal": true,
- "experimentalDecorators": true,
- "noImplicitReturns": true,
- "alwaysStrict": true,
- "noFallthroughCasesInSwitch": true,
- "removeComments": false,
- "strictNullChecks": true,
- "strictFunctionTypes": true,
- "skipLibCheck": true,
- "pretty": true,
- "strictPropertyInitialization": true
- },
- "include": [
- "src/**/*.ts"
- ],
- "exclude": [
- "node_modules"
- ]
- }
|