tween.js/tsconfig.json
Joe Pea 825bd2b466 fix: restore default export for backwards compat
Brings back default exports for backwards compatibility, but this time in a way that works with AMD and CJS module formats without build tool hacks. Uses rollup-plugin-dts to generate the type declaration for the bundle output, removing the brittle regex-based wrangling we were doing.
2020-10-20 00:01:09 -07:00

16 lines
296 B
JSON

{
"compilerOptions": {
"baseUrl": ".",
"outDir": "./.tmp",
"declaration": true,
"strict": true,
"importsNotUsedAsValues": "error",
"sourceMap": true,
"module": "es2015",
"target": "es5",
"moduleResolution": "node",
"lib": ["dom", "es2015"]
},
"exclude": ["node_modules"]
}