You've already forked noclip.website
mirror of
https://github.com/encounter/noclip.website.git
synced 2026-03-30 11:31:37 -07:00
383ff76a36
* Convert project to Webpack 4 * Remove buffer dependency
39 lines
900 B
JSON
39 lines
900 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2017",
|
|
"alwaysStrict": true,
|
|
"downlevelIteration": true,
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noImplicitAny": true,
|
|
"strictFunctionTypes": true,
|
|
"strictNullChecks": true,
|
|
"lib": [
|
|
"es2015",
|
|
"es2015.promise",
|
|
"es2016.array.include",
|
|
"dom"
|
|
],
|
|
"sourceMap": true,
|
|
"moduleResolution": "node",
|
|
"module": "commonjs",
|
|
"types": [
|
|
"gl-matrix",
|
|
"webgl2",
|
|
"pako",
|
|
"filesystem"
|
|
]
|
|
},
|
|
"include": [
|
|
"./src/",
|
|
"node_modules/@webgpu/types"
|
|
],
|
|
"exclude": [
|
|
"**/assembly/*.ts",
|
|
"**/worker/*.ts",
|
|
"**/tools/*.ts"
|
|
]
|
|
}
|