mirror of
https://github.com/3dmol/3Dmol.js.git
synced 2026-06-04 08:39:49 +09:00
Repository reorg
Ryan Guild preferred excessively elaborate file hierarchies. Since he has abandoned the project we're going to go with what makes sense to me (and is arguably more correct - 3dmol is the only true package, so why factor it into a packages directory). Clean up some other issues with typescript and imports.
This commit is contained in:
38
tsconfig.json
Normal file
38
tsconfig.json
Normal file
@@ -0,0 +1,38 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"declarationDir": "build/types",
|
||||
"noImplicitAny": false,
|
||||
"outDir": "tmp",
|
||||
"module": "esnext",
|
||||
"target": "ES2015",
|
||||
"allowJs": true,
|
||||
"sourceMap": true,
|
||||
"declaration": true,
|
||||
"suppressImplicitAnyIndexErrors": true,
|
||||
"noUnusedLocals": false,
|
||||
"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"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user