35 lines
791 B
JSON
35 lines
791 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es5",
|
|
"lib": [
|
|
"dom",
|
|
"dom.iterable",
|
|
"esnext"
|
|
],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"module": "esnext",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "preserve",
|
|
"moduleResolution": "node",
|
|
"baseUrl": "src",
|
|
"paths": {
|
|
"@components/*": [ "components/*" ],
|
|
"@objects/*": [ "objects/*" ],
|
|
"@settings/*": [ "settings/*" ],
|
|
"@styles/*": [ "styles/*" ],
|
|
"@pages/*": [ "pages/*" ],
|
|
"@tools/*": [ "tools/*" ],
|
|
"@assets/*": [ "assets/*" ]
|
|
}
|
|
},
|
|
"include": [
|
|
"src"
|
|
]
|
|
} |