mirror of
https://github.com/openglobus/openglobus.git
synced 2025-12-08 19:25:27 +00:00
38 lines
816 B
JSON
38 lines
816 B
JSON
{
|
|
"include" : [
|
|
"./src/**/*",
|
|
"vite.config.ts"
|
|
],
|
|
"exclude" : [
|
|
"node_modules",
|
|
"lib"
|
|
],
|
|
"compilerOptions" : {
|
|
"strictPropertyInitialization" : true,
|
|
"alwaysStrict" : true,
|
|
"noImplicitOverride" : true,
|
|
"noImplicitAny" : true,
|
|
"strictNullChecks" : true,
|
|
"allowJs" : true,
|
|
"target" : "es2021",
|
|
"declaration" : true,
|
|
"emitDeclarationOnly": true,
|
|
"module" : "NodeNext",
|
|
"moduleResolution" : "NodeNext",
|
|
"types" : [
|
|
"vite",
|
|
"node",
|
|
"vite-plugin-glsl/ext",
|
|
"draco3d"
|
|
],
|
|
"esModuleInterop" : true,
|
|
"forceConsistentCasingInFileNames" : true,
|
|
"strict" : true,
|
|
"skipLibCheck" : true,
|
|
"isolatedModules" : true,
|
|
"outDir" : "lib",
|
|
"verbatimModuleSyntax" : false,
|
|
"resolveJsonModule" : true
|
|
}
|
|
}
|