mirror of
https://github.com/tweenjs/tween.js.git
synced 2025-12-08 20:16:12 +00:00
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.
16 lines
296 B
JSON
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"]
|
|
}
|