You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.1 KiB
54 lines
1.1 KiB
{
|
|
"compilerOptions": {
|
|
"target": "es6",
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"jsx": "preserve",
|
|
"strict": false,
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"importHelpers": true,
|
|
"declaration": true,
|
|
"experimentalDecorators": true,
|
|
"skipLibCheck": true,
|
|
"emitDecoratorMetadata": true,
|
|
"esModuleInterop": true,
|
|
"removeComments": false,
|
|
"noImplicitAny": false,
|
|
"allowSyntheticDefaultImports": true,
|
|
"downlevelIteration": true,
|
|
"sourceMap": true,
|
|
"outDir": "./dist",
|
|
"baseUrl": ".",
|
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
|
|
"lib": [
|
|
"es2018",
|
|
"es2017",
|
|
"es2016",
|
|
"es2015.promise",
|
|
"dom",
|
|
"scripthost",
|
|
"es5"
|
|
],
|
|
"rootDirs": [
|
|
"./src"
|
|
],
|
|
"paths": {
|
|
"@/*": [
|
|
"./src/*"
|
|
]
|
|
},
|
|
"types": [
|
|
"babylonjs"
|
|
]
|
|
},
|
|
"extends": "@vue/tsconfig/tsconfig.dom.json",
|
|
"include": [
|
|
"env.d.ts",
|
|
"src/**/*.ts",
|
|
"src/**/*.vue"
|
|
],
|
|
"exclude": [
|
|
"src/**/__tests__/*"
|
|
]
|
|
}
|
|
|