mirror of
https://github.com/arthur-pbty/portfolio2023.git
synced 2026-06-09 09:11:56 +02:00
31 lines
645 B
JSON
31 lines
645 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"module": "commonjs",
|
|
"lib": [
|
|
"ES2020"
|
|
],
|
|
"noUnusedLocals": true,
|
|
"skipLibCheck": true,
|
|
"incremental": true,
|
|
"noUnusedParameters": true,
|
|
"removeComments": true,
|
|
"declaration": false,
|
|
"moduleResolution": "node",
|
|
"outDir": "../../build",
|
|
"strictNullChecks": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"esModuleInterop": true,
|
|
"rootDir": "../../",
|
|
"baseUrl": "../../"
|
|
},
|
|
"include": [
|
|
"**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"build"
|
|
]
|
|
} |