1234567891011121314151617181920212223242526272829303132333435363738 |
- {
- "compilerOptions": {
- "noEmit": true,
- "target": "es6",
- "module": "esnext",
- "noImplicitAny": false,
- "sourceMap": true,
- "preserveConstEnums": true,
- "moduleResolution": "node",
- "experimentalDecorators": true,
- "jsx": "preserve",
- "lib": ["dom","es5","es6","es7","es2017","es2019"],
- "allowSyntheticDefaultImports": true,
- "typeRoots": ["node_modules/@types"],
- "baseUrl": ".",
- "paths": {
- "*": [
- "*"
- ],
- "app/*": ["app/*"],
- "utils/*": ["app/utils/*"],
- "assets/*": ["app/assets/*"],
- "components/*": [ "app/components/*" ],
- "containers/*": ["app/containers/*"],
- "libs/*": ["libs/*"]
- },
- // https://github.com/Microsoft/TypeScript/wiki/Breaking-Changes#keyof-now-includes-string-number-and-symbol-keys
- "keyofStringsOnly": true,
- "skipLibCheck": true
- // "strict": true,
- // "strictFunctionTypes": false
- // "noUnusedLocals": true,
- // "noUnusedParameters": true
- },
- "exclude": [
- "node_modules"
- ]
- }
|