34 lines
769 B
JSON
34 lines
769 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
|
"module": "ES2020",
|
|
"moduleResolution": "node",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"outDir": "./dist",
|
|
"rootDir": "./assets/js",
|
|
"allowJs": true,
|
|
"checkJs": false,
|
|
"noEmit": false,
|
|
"isolatedModules": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"resolveJsonModule": true
|
|
},
|
|
"include": [
|
|
"assets/js/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"public",
|
|
"resources",
|
|
"dist"
|
|
]
|
|
} |