tainacan-mobile/tsconfig.json

42 lines
716 B
JSON
Raw Normal View History

2022-01-24 17:43:38 +00:00
{
"compilerOptions": {
"target": "esnext",
2022-03-14 22:40:37 +00:00
"noImplicitThis": false,
2022-01-24 17:43:38 +00:00
"module": "esnext",
"strict": true,
"jsx": "preserve",
"importHelpers": true,
"moduleResolution": "node",
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"baseUrl": ".",
"types": [
"webpack-env",
"jest"
],
"paths": {
"@/*": [
"src/*"
]
},
"lib": [
"esnext",
"dom",
"dom.iterable",
"scripthost"
]
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.vue",
"tests/**/*.ts",
"tests/**/*.tsx"
],
"exclude": [
"node_modules"
]
}