50 lines
997 B
JSON
50 lines
997 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2018",
|
|
"module": "ESNext",
|
|
"lib": [
|
|
"ESNext",
|
|
"ESNext.AsyncIterable",
|
|
"DOM"
|
|
],
|
|
"importHelpers": true,
|
|
"moduleResolution": "node",
|
|
"experimentalDecorators": true,
|
|
"sourceMap": true,
|
|
"noImplicitAny": true,
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"checkJs": false,
|
|
"noUnusedLocals": true,
|
|
"strictNullChecks": true,
|
|
"noImplicitThis": true,
|
|
"noImplicitReturns": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strictFunctionTypes": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"~/*": [
|
|
"./*"
|
|
],
|
|
"@/*": [
|
|
"./*"
|
|
]
|
|
},
|
|
"types": [
|
|
"@nuxt/types",
|
|
"@types/node"
|
|
],
|
|
},
|
|
"include": ["**/*.ts", "types"],
|
|
"exclude": [
|
|
"node_modules",
|
|
".nuxt",
|
|
"dist"
|
|
]
|
|
}
|