sigitex.com/tsconfig.json

41 lines
678 B
JSON

{
"include": [
"pages/**/*"
],
"compilerOptions": {
"module": "esnext",
"target": "esnext",
"lib": [
"esnext",
"DOM",
"DOM.Iterable"
],
"moduleResolution": "bundler",
"esModuleInterop": true,
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"strict": true,
"isolatedModules": true,
"noEmit": true,
"paths": {
"assets/*": [
"./assets/*"
],
"@/*": [
"./app/*"
]
}
},
"files": [],
"references": [
{
"path": "./tsconfig.src.json"
},
{
"path": "./tsconfig.test.json"
},
{
"path": "./tsconfig.config.json"
}
]
}