mirror of
https://github.com/optilude/xlsx-template.git
synced 2026-07-02 08:27:39 +08:00
a4b42e4985
That's allow compile code using TSC before publish And all future code can use TypeScript
18 lines
303 B
JSON
18 lines
303 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es5",
|
|
"module": "commonjs",
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"noEmit": false,
|
|
"strict": false,
|
|
"noImplicitAny": false,
|
|
"alwaysStrict": true,
|
|
"esModuleInterop": true,
|
|
"outDir": "lib"
|
|
},
|
|
"files": [
|
|
"src/index.js"
|
|
]
|
|
}
|