mirror of
https://gitee.com/ice-gl/icegl-three-vue-tres.git
synced 2025-04-04 06:02:45 +08:00
52 lines
948 B
JSON
52 lines
948 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "build/dist",
|
|
"module": "esnext",
|
|
"target": "es2017",
|
|
"types": [
|
|
"./src/common/vite-plugin-glsl-ext.d.ts"
|
|
],
|
|
"lib": [
|
|
"esnext",
|
|
"dom"
|
|
],
|
|
"sourceMap": true,
|
|
"baseUrl": ".",
|
|
"jsx": "preserve",
|
|
"allowSyntheticDefaultImports": true,
|
|
"moduleResolution": "node",
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noImplicitReturns": true,
|
|
"ignoreDeprecations": "5.0",
|
|
"noUnusedLocals": true,
|
|
"allowJs": true,
|
|
"experimentalDecorators": true,
|
|
"strict": true,
|
|
"paths": {
|
|
"@/*": [
|
|
"./src/*"
|
|
],
|
|
"PLS/*": [
|
|
"./src/plugins/*"
|
|
],
|
|
"@@/*": [
|
|
"./src/.fes/*"
|
|
]
|
|
}
|
|
},
|
|
"include": [
|
|
"*.js",
|
|
".fes*.js",
|
|
"src/**/*",
|
|
"typings/**/*",
|
|
"config/**/*"
|
|
],
|
|
"exclude": [
|
|
"build",
|
|
"dist",
|
|
"scripts",
|
|
"webpack",
|
|
"jest",
|
|
"node_modules"
|
|
]
|
|
} |