mirror of
https://github.com/3dmol/3Dmol.js.git
synced 2026-06-04 08:39:49 +09:00
38 lines
689 B
JSON
38 lines
689 B
JSON
{
|
|
"compilerOptions": {
|
|
"declarationDir": "build/types",
|
|
"noImplicitAny": false,
|
|
"outDir": "tmp",
|
|
"module": "esnext",
|
|
"target": "ES2015",
|
|
"allowJs": true,
|
|
"sourceMap": true,
|
|
"declaration": true,
|
|
"noUnusedLocals": true,
|
|
"moduleResolution": "node",
|
|
"lib": [
|
|
"dom",
|
|
"esnext"
|
|
],
|
|
"baseUrl": "./src",
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.d.ts",
|
|
"src/**/*.js"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"*.frag",
|
|
"*.vert"
|
|
],
|
|
"typedocOptions": {
|
|
"entryPoints": [
|
|
"./src/index.ts",
|
|
"./src/global.d.ts",
|
|
"./src/WebGL/shaders/shaders.d.ts"
|
|
],
|
|
"out": "doc/typescript"
|
|
}
|
|
}
|