[build] add typescript compiler (#2697)

This commit is contained in:
neverland 2019-02-07 10:43:36 +08:00 committed by GitHub
parent 3e0ac872c8
commit 0fb1083b68
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
11 changed files with 85 additions and 16 deletions

View File

@ -18,7 +18,8 @@ module.exports = function (api) {
{ {
functional: false functional: false
} }
] ],
'@babel/preset-typescript'
], ],
plugins: [ plugins: [
[ [

View File

@ -14,9 +14,10 @@ const babelConfig = {
configFile: path.join(__dirname, '../babel.config.js') configFile: path.join(__dirname, '../babel.config.js')
}; };
const scriptRegExp = /\.(js|ts|tsx)$/;
const isDir = dir => fs.lstatSync(dir).isDirectory(); const isDir = dir => fs.lstatSync(dir).isDirectory();
const isJs = path => /\.js$/.test(path);
const isCode = path => !/(demo|test|\.md)$/.test(path); const isCode = path => !/(demo|test|\.md)$/.test(path);
const isScript = path => scriptRegExp.test(path);
function compile(dir) { function compile(dir) {
const files = fs.readdirSync(dir); const files = fs.readdirSync(dir);
@ -34,10 +35,11 @@ function compile(dir) {
return compile(filePath); return compile(filePath);
} }
// compile js // compile js or ts
if (isJs(file)) { if (isScript(file)) {
const { code } = babel.transformFileSync(filePath, babelConfig); const { code } = babel.transformFileSync(filePath, babelConfig);
fs.outputFileSync(filePath, code); fs.removeSync(filePath);
fs.outputFileSync(filePath.replace(scriptRegExp, '.js'), code);
} }
}); });
} }

View File

@ -30,7 +30,7 @@ module.exports = {
} }
}, },
resolve: { resolve: {
extensions: ['.js', '.vue', '.css'], extensions: ['.js', '.ts', '.tsx', '.vue', '.css'],
alias: { alias: {
packages: path.join(__dirname, '../packages') packages: path.join(__dirname, '../packages')
} }
@ -51,7 +51,7 @@ module.exports = {
] ]
}, },
{ {
test: /\.js$/, test: /\.(js|ts|tsx)$/,
exclude: /node_modules/, exclude: /node_modules/,
use: 'babel-loader' use: 'babel-loader'
}, },

View File

@ -1,6 +1,7 @@
module.exports = { module.exports = {
preset: 'ts-jest',
setupFiles: ['<rootDir>/test/jest.init.js'], setupFiles: ['<rootDir>/test/jest.init.js'],
moduleFileExtensions: ['js', 'vue'], moduleFileExtensions: ['js', 'vue', 'ts', 'tsx'],
transform: { transform: {
'^.+\\.js$': '<rootDir>/test/jest.transform.js', '^.+\\.js$': '<rootDir>/test/jest.transform.js',
'.*\\.(vue)$': '<rootDir>/node_modules/vue-jest' '.*\\.(vue)$': '<rootDir>/node_modules/vue-jest'

View File

@ -74,6 +74,7 @@
"@babel/plugin-transform-runtime": "^7.1.0", "@babel/plugin-transform-runtime": "^7.1.0",
"@babel/polyfill": "^7.2.5", "@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.3.1", "@babel/preset-env": "^7.3.1",
"@babel/preset-typescript": "^7.1.0",
"@vant/doc": "^1.0.23", "@vant/doc": "^1.0.23",
"@vant/eslint-config": "^1.0.8", "@vant/eslint-config": "^1.0.8",
"@vant/markdown-loader": "^1.0.3", "@vant/markdown-loader": "^1.0.3",
@ -111,6 +112,8 @@
"style-loader": "^0.23.1", "style-loader": "^0.23.1",
"stylelint": "^9.10.1", "stylelint": "^9.10.1",
"stylelint-config-standard": "^18.2.0", "stylelint-config-standard": "^18.2.0",
"ts-jest": "^23.10.5",
"typescript": "^3.2.4",
"uppercamelcase": "^3.0.0", "uppercamelcase": "^3.0.0",
"url-loader": "^1.1.2", "url-loader": "^1.1.2",
"vue": "2.6.2", "vue": "2.6.2",

View File

@ -10,9 +10,9 @@
const ELEMENT = '__'; const ELEMENT = '__';
const MODS = '--'; const MODS = '--';
const join = (name, el, symbol) => (el ? name + symbol + el : name); const join = (name: string, el: string, symbol: string) => (el ? name + symbol + el : name);
const prefix = (name, mods) => { const prefix = (name: string, mods: any): any => {
if (typeof mods === 'string') { if (typeof mods === 'string') {
return join(name, mods, MODS); return join(name, mods, MODS);
} }
@ -21,7 +21,7 @@ const prefix = (name, mods) => {
return mods.map(item => prefix(name, item)); return mods.map(item => prefix(name, item));
} }
const ret = {}; const ret: { [key: string]: any } = {};
if (mods) { if (mods) {
Object.keys(mods).forEach(key => { Object.keys(mods).forEach(key => {
ret[name + MODS + key] = mods[key]; ret[name + MODS + key] = mods[key];
@ -31,7 +31,7 @@ const prefix = (name, mods) => {
return ret; return ret;
}; };
export default name => (el, mods) => { export default (name: string) => (el: any, mods?: any) => {
if (el && typeof el !== 'string') { if (el && typeof el !== 'string') {
mods = el; mods = el;
el = ''; el = '';

View File

@ -1,9 +1,9 @@
import { get, camelize } from '..'; import { get, camelize } from '..';
import { lang, messages } from '../../locale'; import { lang, messages } from '../../locale';
export default name => { export default (name: string) => {
const prefix = camelize(name) + '.'; const prefix = camelize(name) + '.';
return (path, ...args) => { return (path: string, ...args: any[]): string => {
const message = get(messages[lang], prefix + path) || get(messages[lang], path); const message = get(messages[lang], prefix + path) || get(messages[lang], path);
return typeof message === 'function' ? message(...args) : message; return typeof message === 'function' ? message(...args) : message;
}; };

View File

@ -2,7 +2,13 @@ import useBem from './bem';
import useSfc from './sfc'; import useSfc from './sfc';
import useI18n from './i18n'; import useI18n from './i18n';
export function use(name) { type UseReturn = [
ReturnType<typeof useSfc>,
ReturnType<typeof useBem>,
ReturnType<typeof useI18n>
];
export function use(name: string): UseReturn {
name = 'van-' + name; name = 'van-' + name;
return [useSfc(name), useBem(name), useI18n(name)]; return [useSfc(name), useBem(name), useI18n(name)];
} }

22
tsconfig.json Normal file
View File

@ -0,0 +1,22 @@
{
"compilerOptions": {
"baseUrl": ".",
"jsx": "preserve",
"target": "esnext",
"module": "esnext",
"strict": true,
"allowJs": true,
"noImplicitThis": true,
"esModuleInterop": true,
"moduleResolution": "node"
},
"include": [
"types/**/*",
"packages/**/*",
],
"exclude": [
"**/*.spec.ts",
"**/*.spec.js",
"node_modules"
]
}

11
types/jsx.d.ts vendored Normal file
View File

@ -0,0 +1,11 @@
import Vue, { VNode } from 'vue';
declare global {
namespace JSX {
interface Element extends VNode {}
interface ElementClass extends Vue {}
interface IntrinsicElements {
[elem: string]: any;
}
}
}

View File

@ -313,6 +313,13 @@
dependencies: dependencies:
"@babel/helper-plugin-utils" "^7.0.0" "@babel/helper-plugin-utils" "^7.0.0"
"@babel/plugin-syntax-typescript@^7.2.0":
version "7.2.0"
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.2.0.tgz#55d240536bd314dcbbec70fd949c5cabaed1de29"
integrity sha512-WhKr6yu6yGpGcNMVgIBuI9MkredpVc7Y3YR4UzEZmDztHoL6wV56YBHLhWnjO1EvId1B32HrD3DRFc+zSoKI1g==
dependencies:
"@babel/helper-plugin-utils" "^7.0.0"
"@babel/plugin-transform-arrow-functions@^7.2.0": "@babel/plugin-transform-arrow-functions@^7.2.0":
version "7.2.0" version "7.2.0"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.2.0.tgz#9aeafbe4d6ffc6563bf8f8372091628f00779550" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.2.0.tgz#9aeafbe4d6ffc6563bf8f8372091628f00779550"
@ -543,6 +550,14 @@
dependencies: dependencies:
"@babel/helper-plugin-utils" "^7.0.0" "@babel/helper-plugin-utils" "^7.0.0"
"@babel/plugin-transform-typescript@^7.1.0":
version "7.2.0"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.2.0.tgz#bce7c06300434de6a860ae8acf6a442ef74a99d1"
integrity sha512-EnI7i2/gJ7ZNr2MuyvN2Hu+BHJENlxWte5XygPvfj/MbvtOkWor9zcnHpMMQL2YYaaCcqtIvJUyJ7QVfoGs7ew==
dependencies:
"@babel/helper-plugin-utils" "^7.0.0"
"@babel/plugin-syntax-typescript" "^7.2.0"
"@babel/plugin-transform-unicode-regex@^7.2.0": "@babel/plugin-transform-unicode-regex@^7.2.0":
version "7.2.0" version "7.2.0"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.2.0.tgz#4eb8db16f972f8abb5062c161b8b115546ade08b" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.2.0.tgz#4eb8db16f972f8abb5062c161b8b115546ade08b"
@ -609,6 +624,14 @@
js-levenshtein "^1.1.3" js-levenshtein "^1.1.3"
semver "^5.3.0" semver "^5.3.0"
"@babel/preset-typescript@^7.1.0":
version "7.1.0"
resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.1.0.tgz#49ad6e2084ff0bfb5f1f7fb3b5e76c434d442c7f"
integrity sha512-LYveByuF9AOM8WrsNne5+N79k1YxjNB6gmpCQsnuSBAcV8QUeB+ZUxQzL7Rz7HksPbahymKkq2qBR+o36ggFZA==
dependencies:
"@babel/helper-plugin-utils" "^7.0.0"
"@babel/plugin-transform-typescript" "^7.1.0"
"@babel/runtime@7.0.0": "@babel/runtime@7.0.0":
version "7.0.0" version "7.0.0"
resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.0.0.tgz#adeb78fedfc855aa05bc041640f3f6f98e85424c" resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.0.0.tgz#adeb78fedfc855aa05bc041640f3f6f98e85424c"
@ -9817,7 +9840,7 @@ typescript@^3.0.3:
resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.2.2.tgz#fe8101c46aa123f8353523ebdcf5730c2ae493e5" resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.2.2.tgz#fe8101c46aa123f8353523ebdcf5730c2ae493e5"
integrity sha512-VCj5UiSyHBjwfYacmDuc/NOk4QQixbE+Wn7MFJuS0nRuPQbof132Pw4u53dm264O8LPc2MVsc7RJNml5szurkg== integrity sha512-VCj5UiSyHBjwfYacmDuc/NOk4QQixbE+Wn7MFJuS0nRuPQbof132Pw4u53dm264O8LPc2MVsc7RJNml5szurkg==
typescript@^3.2.1: typescript@^3.2.1, typescript@^3.2.4:
version "3.2.4" version "3.2.4"
resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.2.4.tgz#c585cb952912263d915b462726ce244ba510ef3d" resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.2.4.tgz#c585cb952912263d915b462726ce244ba510ef3d"
integrity sha512-0RNDbSdEokBeEAkgNbxJ+BLwSManFy9TeXz8uW+48j/xhEXv1ePME60olyzw2XzUqUBNAYFeJadIqAgNqIACwg== integrity sha512-0RNDbSdEokBeEAkgNbxJ+BLwSManFy9TeXz8uW+48j/xhEXv1ePME60olyzw2XzUqUBNAYFeJadIqAgNqIACwg==