38 lines
1.0 KiB
JSON
38 lines
1.0 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"@/*": ["src/*"],
|
|
"@api/*": ["src/api/*"],
|
|
"@assets/*": ["src/assets/*"],
|
|
"@components/*": ["src/components/*"],
|
|
"@utils/*": ["src/utils/*"],
|
|
"@views/*": ["src/views/*"],
|
|
"@store/*": ["src/store/*"],
|
|
"@layout/*": ["src/layout/*"],
|
|
"@constants/*": ["src/utils/constants/*"]
|
|
},
|
|
"target": "ES6",
|
|
"module": "commonjs",
|
|
"allowSyntheticDefaultImports": true,
|
|
"jsx": "preserve",
|
|
"moduleResolution": "node",
|
|
"experimentalDecorators": true,
|
|
"noImplicitAny": false,
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"lib": ["ESNext", "DOM", "DOM.Iterable", "ScriptHost"]
|
|
},
|
|
"include": [
|
|
"src/**/*",
|
|
"tests/**/*",
|
|
"packages/**/*",
|
|
"types/**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist",
|
|
"build",
|
|
"**/*.spec.ts"
|
|
]
|
|
} |